{% extends "base.html" %} {% block title %}Q&A Forum - Quick Care Connect{% endblock %} {% block extra_meta %} {% endblock %} {% block page_breadcrumb %}
{% endblock %} {% block content %}

Medical Q&A Forum

Get free, reliable answers from verified doctors. Ask anything about your health — anonymously and securely.

{% if session.user_role == 'patient' %} Ask a Free Question {% elif not session.user_id %} Login to Ask {% endif %}
{% macro patient_avatar_src(question) -%} {%- if not question.is_anonymous and question.patient and question.patient.user and question.patient.user.profile_picture -%} {{ url_for('static', filename='uploads/' + question.patient.user.profile_picture) }} {%- endif -%} {%- endmacro %} {% if questions.items %} {% for question in questions.items %}
{% if patient_avatar_src(question) %} Patient avatar {% else %} {% endif %}

{{ question.title|truncate(62, True, '...') }}

{{ question.category.title() }}

{{ question.content|striptags|truncate(105, True, '...') }}

{% endfor %} {% if questions.pages > 1 %} {% endif %} {% else %}

No Questions Yet

{% if current_category != 'all' or current_answered != 'all' %} No questions match your filters. Try a different specialty or status. {% else %} Be the first to ask a free medical question! {% endif %}

{% if session.user_role == 'patient' %} Ask First Question {% endif %}
{% endif %}
{% if session.user_role == 'patient' %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}